home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / RCS / _exit.c,v next >
Text File  |  1991-10-01  |  2KB  |  90 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  sprited:1.1.1;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.1
  10. date     88.06.19.14.31.00;  author ouster;  state Exp;
  11. branches 1.1.1.1;
  12. next     ;
  13.  
  14. 1.1.1.1
  15. date     91.10.01.19.55.46;  author kupfer;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19.  
  20. desc
  21. @@
  22.  
  23.  
  24.  
  25. 1.1
  26. log
  27. @Initial revision
  28. @
  29. text
  30. @/* 
  31.  * _exit.c --
  32.  *
  33.  *    Procedure to map from Unix _exit system call to Sprite.
  34.  *
  35.  * Copyright 1986 Regents of the University of California
  36.  * All rights reserved.
  37.  */
  38.  
  39. #ifndef lint
  40. static char rcsid[] = "$Header: _exit.c,v 1.3 87/02/08 20:37:23 douglis Exp $ SPRITE (Berkeley)";
  41. #endif not lint
  42.  
  43. #include "sprite.h"
  44. #include "proc.h"
  45.  
  46. #include "compatInt.h"
  47.  
  48.  
  49. /*
  50.  *----------------------------------------------------------------------
  51.  *
  52.  * _exit --
  53.  *
  54.  *    Procedure to map from Unix _exit system call to Sprite Proc_RawExit.
  55.  *
  56.  * Results:
  57.  *    _exit() should never return.  If it does, however, UNIX_ERROR is
  58.  *    returned.
  59.  *
  60.  * Side effects:
  61.  *    Any open streams are closed, then the process invoking _exit() is
  62.  *    terminated.
  63.  *
  64.  *----------------------------------------------------------------------
  65.  */
  66.  
  67. int
  68. _exit(exitStatus)
  69.     int exitStatus;        /* process's termination status */
  70. {
  71.     Proc_RawExit(exitStatus);
  72.     /*
  73.      * We should never reach this point, regardless of status value.
  74.      */
  75.     errno = Compat_MapCode(FAILURE);
  76.     return(UNIX_ERROR);
  77. }
  78. @
  79.  
  80.  
  81. 1.1.1.1
  82. log
  83. @Initial branch for Sprite server.
  84. @
  85. text
  86. @d11 1
  87. a11 1
  88. static char rcsid[] = "$Header: /sprite/src/lib/c/unixSyscall/RCS/_exit.c,v 1.1 88/06/19 14:31:00 ouster Exp $ SPRITE (Berkeley)";
  89. @
  90.